home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP01 / HELLO.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  452 b   |  17 lines

  1. //---------------------------------------------------------------------------
  2. #include <condefs.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <iostream.h>
  6. #include <conio.h>
  7.  
  8. #pragma hdrstop
  9. //---------------------------------------------------------------------------
  10. int main(int argc, char **argv)
  11. {
  12.     cout << "Hello World!";
  13.   getch();
  14.   return 0;
  15. }
  16. //---------------------------------------------------------------------------
  17.